home *** CD-ROM | disk | FTP | other *** search
/ Chip 2000 February / OpenLinux 2.3 CD.iso / live / lizard / english / help / fdisk.qml < prev    next >
Encoding:
Text File  |  1999-08-15  |  7.9 KB  |  259 lines

  1. <qml title="Partitioning Hard Disks">
  2.   <h1>
  3.     Partitioning Hard Disks
  4.   </h1>
  5.   <h2>
  6.     <a name="Overview">
  7.       Overview
  8.     </a>
  9.   </h2>
  10.   <p>
  11.     Before OpenLinux can be installed, you must create <a
  12.     href="def_partition.qml">partitions</a> for it to reside on.  Usually
  13.     you will want at least 2 partitions, one for the OpenLinux <a
  14.     href="def_rootpart.qml">root</a> partition, and one for the OpenLinux <a
  15.     href="def_linux-swap.qml">swap</a> partition.  More partitions can be
  16.     mounted to other directories in the OpenLinux filesystem, such as the
  17.     users' local storage space (/home) residing on its own partition, as
  18.     described in the <a href="fdisk.qml#Mount Point">Mount Point</a>
  19.     section.
  20.   </p>
  21.   <h2>
  22.     <a name="Information Description">
  23.       Information Description
  24.     </a>
  25.   </h2>
  26.   <p>
  27.     On the hard disk partitioning screen, you will see a window which
  28.     includes information about your hard disk.  Each column is described
  29.     in more detail below.
  30.   </p>
  31.   <h3>
  32.     <a name="Device">
  33.       Device
  34.     </a>
  35.   </h3>
  36.   <p>
  37.     Each device name in the <strong>Device</strong> column refers to a hard
  38.     disk, CDROM drive, or other partitionable device.  Partitions on each 
  39.     device are also included.  Device names for drives and partitions in
  40.     OpenLinux are as follows.
  41.   </p>
  42.   <ul>
  43.     <li>
  44.       IDE/ATAPI devices
  45.     </li>
  46.     <ul>
  47.       <li>
  48.         <strong>/dev/hda</strong> = Primary IDE channel, Master Device
  49.       </li>
  50.       <li>
  51.         <strong>/dev/hdb</strong> = Primary IDE channel, Slave Device
  52.       </li>
  53.       <li>
  54.         <strong>/dev/hdc</strong> = Secondary IDE channel, Master Device
  55.       </li>
  56.       <li>
  57.         <strong>/dev/hdd</strong> = Secondary IDE channel, Slave Device
  58.       </li>
  59.     </ul>
  60.     <li>
  61.       SCSI devices
  62.     </li>
  63.     <ul>
  64.       <li>
  65.         <strong>/dev/sda</strong> = The first SCSI hard disk/CDROM drive
  66.       </li>
  67.       <li>
  68.         <strong>/dev/sdb</strong> = The second SCSI hard disk/CDROM drive
  69.       </li>
  70.       <li>
  71.         <strong>/dev/sdc</strong> = The third SCSI hard disk/CDROM drive
  72.       </li>
  73.       <li>
  74.         and so on.
  75.       </li>
  76.     </ul>
  77.   </ul>
  78.   <p>
  79.     Most pre-built systems include one IDE hard disk and one ATAPI CDROM
  80.     drive.  On those systems, the default is usually to have the IDE hard
  81.     disk as the Primary Master device, or <strong>/dev/hda</strong>, and the
  82.     CDROM drive as the Secondary Master device, or <strong>/dev/hdc</strong>.
  83.   </p>
  84.   <p>
  85.     Each drive is divided into partitions. However, before using such 
  86.     partitions, they must be initialized, or formatted, in a certain way 
  87.     depending on what type of data will be stored on them.  Those system 
  88.     types are described in the <a href="fdisk.qml#System">System</a> section 
  89.     below.
  90.   </p>
  91.   <p>
  92.     The convention for referencing paritions on each hard drive is to simply
  93.     append a number to the end of the disk's device name, starting with 1
  94.     (one).  For example, the first partition on the Primary Master IDE disk
  95.     is referenced by <strong>/dev/hda1</strong>, the second partition on
  96.     the same disk is <strong>/dev/hda2</strong>, and so on.
  97.   </p>
  98.   <h3>
  99.     <a name="Start">
  100.       Start
  101.     </a>
  102.   </h3>
  103.   <p>
  104.     The <strong>Start</strong> column refers to the corresponding
  105.     partition's (or disk's) starting <a href="def_sectors.qml">sector</a>.
  106.     For example, if /dev/hda1 starts at the beginning of the disk, its
  107.     starting sector will be 1.
  108.   </p>
  109.   <p>
  110.     See also:  <a href="fdisk.qml#End">End</a>
  111.   </p>
  112.   <h3>
  113.     <a name="End">
  114.       End
  115.     </a>
  116.   </h3>
  117.   <p>
  118.     The <strong>End</strong> column is much like the <a
  119.     href="fdisk.qml#Start">Start</a> column, except that it designates the
  120.     ending <a href="def_sectors.qml">sector</a> of the partition or disk.  
  121.     The <strong>Start</strong> and <strong>End</strong> sectors represent the
  122.     <a href="def_sector-range.qml">range</a> of sectors a specific
  123.     partition or disk uses.  
  124.   </p>
  125.   <h3>
  126.     <a name="Size">
  127.       Size
  128.     </a>
  129.   </h3>
  130.   <p>
  131.     The <strong>Size</strong> column contains the current size of the
  132.     corresponding partition.  MB is used to represent megabytes.
  133.   </p>
  134.   <h3>
  135.     <a name="System">
  136.       System
  137.     </a>
  138.   </h3>
  139.   <p>
  140.     The <strong>System</strong> column contains the type of system for
  141.     which the partition will be formatted.  Before a partition can be used 
  142.     to store data or contain an operating system, it must be formatted.  The 
  143.     available types of formatting are
  144.     <ul>
  145.       <li>
  146.         <a href="def_linux-native.qml">Linux Native</a>
  147.       </li>
  148.       <li>
  149.         <a href="def_linux-swap.qml">Linux Swap</a>
  150.       </li>
  151.       <li>
  152.         <a href="def_extended.qml">Extended</a>
  153.       </li>
  154.       <li>
  155.         <a href="def_doswin.qml">DOS / Windows</a>
  156.       </li>
  157.     </ul>
  158.   </p>
  159.   <h3>
  160.     <a name="Bootable">
  161.       Bootable
  162.     </a>
  163.   </h3>
  164.   <p>
  165.     The <strong>bootable</strong> column represents whether the
  166.     corresponding partition will be bootable or not.  Normally you will only 
  167.     want <strong>one</strong> bootable partition, since most systems will not 
  168.     know what to do if they find more than one.
  169.   </p>
  170.   <h3>
  171.     <a name="Mount Point">
  172.       Mount Point
  173.     </a>
  174.   </h3>
  175.   <p>
  176.     The <strong>mount point</strong> column is used to display to what
  177.     directory the corresponding partition will be mounted.  For example, 
  178.     you could have all users' home directories on a separate partition (for 
  179.     safety or reuse between systems) by specifying <strong>/home</strong> as 
  180.     the mount point.  One partition must be designated as the 
  181.     <a href="def_rootpart.qml">root</a> ('/') partition.
  182.   </p>
  183.   <h3>
  184.     <a name="Formatting">
  185.       Formatting
  186.     </a>
  187.   </h3>
  188.   <p>
  189.     The <strong>formatting</strong> column designates whether the
  190.     corresponding partition will be formatted or not. If you have data
  191.     that will be used in the new OpenLinux system but is not 
  192.     to be formatted (such as in users' home directories), make sure this is 
  193.     set to "no" using the <a href="fdisk.qml#Edit">Edit</a> feature.
  194.   </p>
  195.   <h2>
  196.     <a name="Button Description">
  197.       Button Description
  198.     </a>
  199.   </h2>
  200.   <h3>
  201.     <a name="Edit">
  202.       Edit
  203.     </a>
  204.   </h3>
  205.   <p>
  206.     The <strong>edit</strong> button is used when changing the parameters of
  207.     a partition.  The parameters that can be changed are the 
  208.     <a href="fdisk.qml#Start">Start</a> and <a href="fdisk.qml#End">End</a> 
  209.     sectors, the <a href="fdisk.qml#System">System</a> type, the 
  210.     <a href="fdisk.qml#Mount Point">mount point</a>, the 
  211.     <a href="fdisk.qml#Bootable">bootable</a> flag, and whether the partition 
  212.     should be <a href="fdisk.qml#Formatting">formatted</a> or not.  Some 
  213.     partitions must be formatted, such as the <a href="def_rootpart.qml">root
  214.     </a> partition.
  215.   </p>
  216.   <h3>
  217.     <a name="Delete">
  218.       Delete
  219.     </a>
  220.   </h3>
  221.   <p>
  222.     The <strong>delete</strong> button is used for deleting the parameters
  223.     on a partition.  If you wish to reset a partitions settings, then
  224.     click this button. 
  225.   </p>
  226.   <h3>
  227.     <a name="Add Logical">
  228.       Add Logical
  229.     </a>
  230.   </h3>
  231.   <p>
  232.     The <strong>add logical</strong> button can be used to create a <a
  233.     href="def_logical.qml">logical</a> partition within an 
  234.     <a href="def_extended.qml">extended</a> partition.  You can only create a
  235.     logical partition if an extended partition is present.
  236.   </p>
  237.   <h3>
  238.     <a name="Write">
  239.       Write
  240.     </a>
  241.   </h3>
  242.   <p>
  243.     The <strong>write</strong> button is used to save the current 
  244.     partition information to the disk's partition tables.  You must write the 
  245.     partition information before the <strong>next</strong> button will be 
  246.     available and continuing.
  247.   </p>
  248.   <h3>
  249.     <a name="Reset">
  250.       Reset
  251.     </a>
  252.   </h3>
  253.   <p>
  254.     The <strong>reset</strong> button is used to change the 
  255.     partition settings back to what they originally were before entering this 
  256.     screen.  Think of this as an "undo all changes" button.
  257.   </p>
  258. </qml>
  259.